home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 26
/
AACD 26.iso
/
AACD
/
Programming
/
AllPlaton
/
Unsorted
/
FindWrongChars.AMOS
/
FindWrongChars.amosSourceCode
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
AMOS Source Code
|
1999-05-15
|
283 b
|
12 lines
Set Input 10,-1
Open In 1,"dh1:assembler/deli/mixingroutines.lnk"
While Not Eof(1)
Inc LINE
Line Input #1,T$
T$=T$-"�"-"�"-"�"-"�"
For A=0 To Len(T$)-1
Exit If Peek(Varptr(T$)+A)>128
Next
If A<Len(T$) Then Print T$ : Wait Key
Wend
Close 1